home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000022_crash!minyos.xx….OZ.AU!s924723_Mon, 7 Jun 93 21:52:13 PST.msg < prev    next >
Text File  |  1993-08-31  |  2KB  |  55 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Mon, 7 Jun 93 21:52:13 PST
  3. Received: from peladon.rmit.OZ.AU by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o2uhR-0002GfC; Mon, 7 Jun 93 20:50 PDT
  5. Received: from minyos.xx.rmit.OZ.AU by peladon.rmit.OZ.AU with SMTP id AA27195
  6.   (5.65c/IDA-1.4.4 for <amigae@bkhouse.cts.com>); Tue, 8 Jun 1993 13:46:11 +1000
  7. Received: by minyos.xx.rmit.oz.au
  8. Message-Id: <9306080345.11372@minyos.xx.rmit.oz.au>
  9. Date: Tue, 8 Jun 1993 13:45:51 +1000 (EST)
  10. In-Reply-To: <m0o2nd9-0000lFC@crash.cts.com> from "Barry D. Wills" at Jun 7, 93 03:15:00 pm
  11. X-Mailer: ELM [version 2.4 PL21]
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset=US-ASCII
  14. Content-Transfer-Encoding: 7bit
  15. Content-Length: 1538
  16. From: s924723@minyos.xx.rmit.OZ.AU (Son Huu Le)
  17. To: BWILLS@kirk.safb.af.mil (Barry D. Wills)
  18. Cc: amigae@bkhouse.cts.com
  19. Subject: Re: [Untitled reply (from Wouter)]
  20.  
  21. > This is true...except that I don't have KS2.0, so I couldn't use Fgets().  It
  22. > sound like you are using an obsolete version of EPP, Son Le.  In EPP V0.13b I 
  23. > have replace all my ReadStr()'s with Read()'s and a juggling act, and this has
  24. > significantly increased the rate of input.  I am interested in hearing how 
  25. > Read() compares with Fgets().  (BTW, epp013b.lha was uploaded to Aminet some-
  26. > time last week.  It fixes some potentially serious bugs, so ditch the old
  27. > versions!) 
  28.  
  29. Read() is just slightly slower than Fgets() (;
  30.  
  31. Actually, I did get epp013b, but didn't notice any significant changes except
  32. for Read() so I ditched it.. I think I better have a second look..
  33.  
  34. Btw: On my system, epp gurus if you don't specify the filenames, Close()ing
  35. unopened files.. easy fixed. (Btw: Wouter, how about an uninitialised variable
  36. warning?)  Also how about a WbenchToFront() before you start.. much better than
  37. waiting for EC to pop it to front. Besides it doesn't hurt.
  38.  
  39. > Wouter couldn't be more right about the difficulty of exchanging ReadStr() and
  40. > Fgets() in most cases, though.  How did you fare, Son Le?  I had a serious 
  41. > headache from my bout with it.
  42.  
  43. What sort of problems? Here's how I currently have it.
  44.  
  45. PROC read (fileHandle, theString)
  46.   IF Fgets(fileHandle,theString,1024)=FALSE THEN RETURN -1
  47. ENDPROC  0
  48.  
  49. And the rest of the program the same.
  50.  
  51. I was gonna support wb1.3 but it was too much trouble re-writing what was
  52. already in wb2.0. EPP's a great program, only wish it was faster than EC!! (;
  53.  
  54. Son Le